int x = 1;
println(x++); // Prints "1" to the console
println(x); // Prints "2" to the console